home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
logo1a
/
slavko.frm
next >
Wrap
Text File
|
1999-10-14
|
5KB
|
147 lines
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form Form3
BackColor = &H00FFFFFF&
BorderStyle = 0 'None
Caption = "Form3"
ClientHeight = 2730
ClientLeft = 0
ClientTop = 0
ClientWidth = 3075
FillColor = &H00FFFFFF&
LinkTopic = "Form3"
ScaleHeight = 2730
ScaleWidth = 3075
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Timer Timer1
Interval = 100
Left = 1920
Top = 2160
End
Begin VB.Timer Timer2
Interval = 3000
Left = 2400
Top = 2160
End
Begin MSComctlLib.ImageList ImageList
Left = 120
Top = 2040
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 74
ImageHeight = 85
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 13
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":0000
Key = "s1"
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":1D90
Key = "s2"
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":6844
Key = "s3"
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":B2F8
Key = "s4"
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":FDAC
Key = "s5"
EndProperty
BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":14860
Key = "s6"
EndProperty
BeginProperty ListImage7 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":19314
Key = "s7"
EndProperty
BeginProperty ListImage8 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":1DDC8
Key = "s8"
EndProperty
BeginProperty ListImage9 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":2287C
Key = "s9"
EndProperty
BeginProperty ListImage10 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":27330
Key = "s10"
EndProperty
BeginProperty ListImage11 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":2BDE4
Key = "s11"
EndProperty
BeginProperty ListImage12 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":30898
Key = "s12"
EndProperty
BeginProperty ListImage13 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Slavko.frx":3534C
Key = "s13"
EndProperty
EndProperty
End
Begin VB.Shape Shape1
BorderColor = &H005FCEEF&
BorderWidth = 3
Height = 1575
Left = 555
Shape = 5 'Rounded Square
Top = 480
Width = 1935
End
Begin VB.Image Image1
BorderStyle = 1 'Fixed Single
Height = 615
Left = 960
Top = 600
Width = 615
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'Animated BMP, you may call it logo...
'Using a few controls create originaly logo for your app...
'Very easy and very cute
' Have a good time!
' sslavko@yubc.net
'__________________________________________________________
'Click on Form to Unload it
Private Sub Form_Click()
Unload Me
End Sub
Private Sub Timer1_Timer() 'Set Timer1 and Custom of ImageList2
Static broj As Integer
If broj = 0 Or broj = 13 Then
broj = 1
Timer1.Enabled = False
End If
Image1.Picture = ImageList.ListImages.Item(broj).Picture
broj = broj + 1
End Sub
Private Sub Timer2_Timer()
Timer1.Enabled = True
End Sub